home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Java 1996 August
/
Java - Summer 1996.iso
/
kaffe-0.2
/
kaffe
/
errors.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-02-12
|
1KB
|
35 lines
/*
* errors.h
* Error return codes.
*
* Copyright (c) 1996 Systems Architecture Research Centre,
* City University, London, UK.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
*/
#ifndef __errors_h
#define __errors_h
struct _object;
extern struct _object* ClassFormatError;
extern struct _object* ClassFormatError;
extern struct _object* LinkageError;
extern struct _object* NoClassDefFoundError;
extern struct _object* NoSuchFieldError;
extern struct _object* NoSuchMethodError;
extern struct _object* OutOfMemoryError;
extern struct _object* UnsatisfiedLinkError;
extern struct _object* VirtualMachineError;
extern struct _object* ClassCircularityError;
extern struct _object* NegativeArraySizeException;
extern struct _object* ClassCastException;
extern struct _object* IllegalMonitorStateException;
extern struct _object* NullPointerException;
#endif